home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / NeXTmille / Source / MilesView.h < prev    next >
Text File  |  1990-12-26  |  683b  |  32 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import "CardView.h"
  5.  
  6.  
  7. // This is a base class for all of the distance cards.
  8. //    It holds an instance variable that details the distance value and
  9. //    performs the drawing for a distance card.
  10.  
  11.  
  12. @interface MilesView:CardView
  13. {
  14.  
  15.                                                 // This variable is declared in this base class but is
  16.                                                 //    used in the subclasses.  The subclasses store their
  17.                                                 //    distance value here.
  18.     int        myMiles;
  19. }
  20.  
  21.  
  22.                                                 // The miles view is a base class, of sorts.
  23.                                                 //    It locates and initializes the bottom face bitmap
  24.                                                 //    for miles distance.
  25. - init;
  26.  
  27.  
  28. - drawSelf:( const NXRect * )rects :( int )rectCount;
  29.  
  30.  
  31. @end
  32.